home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 15 / BBS in a box XV-1.iso / Files / System 7 / C / Cron 1.20.sit / Cron 1.20 ƒ / READ ME / READ ME.rsrc < prev    next >
Encoding:
Text File  |  1994-06-28  |  5.6 KB  |  115 lines  |  [ttro/ttxt]

  1.     2 RttrottxtÂÂ'ÚX!EµÛ 'ÕX!n˛⁄OÛ '∂X1n˛ÿq-mREAD MEPartSIT! "PartSIT!™5$©D.˲ŸÏR?/˛‰HÄ≥©B.i˛ŸgLU/˛ÊJÄcBv˝ÃBR?W˝Ã©Fv˝Ã¿˛Ãv˛Ê¿˛–»Z˛ÃP⁄ãùW¡DJmflR?W˛Ê©G.f˛Ÿÿ.˛ÿ: )U/˛‚Ωi·Cron 1.00 is a program scheduling utility similar to the UNIX cron utility. Just make aliases of documents or applications you want Cron to launch periodically, and it will launch them for you when you want.
  2.  
  3. To install:
  4. ---------
  5. Cron is really two things: Crond, which is a faceless background app, and CronMgr, which is a Control Panel.
  6.  
  7. Drag Crond into a folder where you keep applications or utilities.
  8.  
  9. CronMgr belongs in the Control Panels folder inside your System Folder. Drag CronMgr on top of your System Folder or on top of or into your Control Panels Folder. Open the Cron Control Panel check the boxes. Cron is now ready and willing to schedule stuff for you.
  10.  
  11. REVISION HISTORY:
  12.  
  13. Version 1.10 (4/15/94):
  14. • Added the feature that either CronMgr or Crond will create the "Cron Preferences" folder if it can't find one. Thought I'd already done that. Also added the "Now" alias feature.
  15.  
  16. Version 1.00 (4/14/94):
  17. • Initial release. I've been using this thing for quite a long time, but two different people on two different occasions in the same week told me that they would like to see a shareware version of this. I don't know if there is one or not, but here is one.
  18.  
  19. Enjoy!
  20.  
  21. Please report bugs, problems, and suggestions to:
  22. Mark Malson
  23. 914 Richwood Avenue
  24. Hamilton, OH 45013-3829 USA
  25. CIS: [71561,1313]
  26. Internet: markm@xetron.com
  27.  
  28. ----------------------------------------------
  29. The following text is the text from the About... dialog. Print this out if you want a hard copy of the Cron Alias name description.
  30. ----------------------------------------------
  31.  
  32. About Cron
  33.  
  34. Cron is a utility that automatically launches applications or documents at
  35. times you specify. For example, if you have a mail program that you want
  36. to set up to check for mail every hour, you can use Cron to launch it for you.
  37.  
  38. How to use Cron
  39.  
  40. • Place the "crond" application wherever you normally keep applications.
  41.    I use a "Utilities" folder, the same place I keep Disk First Aid and stuff.
  42. • Place the CronMgr control panel in your Control Panels folder. You can
  43.    do this by dragging CronMgr on to the System Folder and the Finder will
  44.    put it in the Control Panels Folder for you. (Actually, CronMgr can be
  45.    anywhere, but the Control Panels folder is a handy place for it.)
  46. • Open up the CronMgr control panel. Make sure that the "Currently
  47.    Running" and "Launch at Startup" boxes are checked.
  48. • Make Aliases of documents or applications you want to have executed
  49.    periodically. For me, it's usually documents that direct their respective
  50.    applications to do some predetermined function (like a script).
  51. • Put the aliases inside the "Cron Preferences" folder. This folder is inside
  52.    the "Preferences" folder inside the System Folder.
  53. • Rename the aliases to specify when you want them executed. The name of
  54.    the alias is identical in syntax to the UNIX crontab time specifier. If you
  55.    don't know the syntax, see the section below.
  56.  
  57. That's it -- if cron is already running, it will immediately start launching
  58. things at their respective times.
  59.  
  60. Cron Alias Names
  61.  
  62. The syntax for Cron Alias names is somewhat cryptic -- it is identical to
  63. the UNIX crontab syntax for specifying times. The General format is:
  64.  
  65. Minute Hour Date Month Dayofweek, where:
  66.  
  67. Minute is 0-59, (the minute of the hour)
  68. Hour is 0-23, (the hour of the day)
  69. Date is 0-31 (the day of the month)
  70. Month is 1-12 (the month)
  71. Dayofweek is 0-6 (Sunday-Saturday)
  72.  
  73. Each field can specify a single value. That is, if you want something to be
  74. executed on the hour, your minute field would be 0.
  75.  
  76. Each field can be specify multiple values by placing the desired numbers
  77. separated by commas (no spaces!). That is, if you want something to be
  78. launched on both the hour and the half-hour, your minute field would be
  79. 0,30.
  80.  
  81. Each field can specify a range of values by placing the desired numbers
  82. (inclusive) separated by a dash (no spaces!). That is, if you want something
  83. to be launched during the hours of 8 AM and 5 PM, your hour field would be
  84. 8-17.
  85.  
  86. Each field can be a combination of single values and value ranges. That is, if
  87. you want something to be executed on the hour, on the half hour, and every
  88. minute from 45 to 50 minutes after the hour, your minute field would be
  89. 0,30,45-50.
  90.  
  91. Each field can also specify any value by placing an asterisk (*) in the field.
  92. If you don't care what day of the month it is, your month field would be *.
  93.  
  94. Examples of Cron Alias Names
  95.  
  96. 0 * * * * would launch every hour on the hour.
  97. 30 * * * * would launch every hour on the half-hour.
  98. 5,35 * * * * would launch at 5 minutes and 35 minutes after every hour.
  99. 0 8-17 * * * would launch at 8:00 AM, and every hour on the hour until
  100. (and including) 5:00 PM.
  101. 0 8-17 * * 1-5 would launch every hour from 8 to 5, but only on
  102. Mondays through Fridays.
  103. 0 0 1 * * would launch at midnight on the first day of every month.
  104. 5,35 8-17 * 12 2,4 would launch at 5 minutes and 35 minutes after
  105. every hour from 8 AM to 5 PM, every Tuesday and Thursday in December.
  106.  
  107. Cron puts a file in the "Cron Preferences" folder that is named "Min Hour
  108. Date Month Day" so that you can remember the sequence without having
  109. to look it up all the time.
  110.  
  111. General Stuff
  112.  
  113. Crond is a faceless background application. CronMgr is a Control Panel.
  114. They were both developed using THINK C version 5. They require System
  115. 7 or greater.¬¿ˇˇ